home *** CD-ROM | disk | FTP | other *** search
/ Saar AMOK 2 / Saar AMOK II - Oktober 1994 (1994)(Kreativ Marketing)(DE)[!][I-7598].iso / disks / 651_700 / 652 / packit / install_packit next >
Text File  |  1993-11-02  |  727b  |  39 lines

  1. ; Installation script for PackIt
  2.  
  3. (transcript "Installing PackIt...")
  4.  
  5. (copylib
  6.         (prompt "Install PowerPacker library.")
  7.         (help @copylib-help)
  8.         (source "LIBS/powerpacker.library")
  9.         (dest "libs:")
  10.         (confirm)
  11. )
  12.  
  13. (copylib
  14.         (prompt "Install ReqTools library.\n"
  15.                 "Required for working with encrypted files.\n")
  16.         (help @copylib-help)
  17.         (source "LIBS/ReqTools.library")
  18.         (dest "libs:")
  19.         (confirm)
  20. )
  21.  
  22. (set name
  23.         (askdir
  24.                 (prompt "Install PackIt where?")
  25.                 (help @askdir-help)
  26.                 (default "C:")
  27.         )
  28. )
  29.  
  30. (copyfiles
  31.         (source "PackIt")
  32.         (dest name)
  33. )
  34.  
  35. (set @default-dest name)
  36.  
  37. (exit)
  38.  
  39.